home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / STRUCT1.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  838b  |  35 lines

  1.                              /* Chapter 11 - Program 1 - STRUCT1.C */
  2. #include "stdio.h"
  3.  
  4. struct {
  5.    char initial;     /* last name initial      */
  6.    int  age;         /* childs age             */
  7.    int  grade;       /* childs grade in school */
  8. } boy, girl;
  9.  
  10. void main()
  11. {
  12.    boy.initial = 'R';
  13.    boy.age = 15;
  14.    boy.grade = 75;
  15.  
  16.    girl.age = boy.age - 1;  /* she is one year younger */
  17.    girl.grade = 82;
  18.    girl.initial = 'H';
  19.  
  20.    printf("%c is %d years old and got a grade of %d\n",
  21.                                  girl.initial, girl.age, girl.grade);
  22.  
  23.    printf("%c is %d years old and got a grade of %d\n",
  24.                                     boy.initial, boy.age, boy.grade);
  25. }
  26.  
  27.  
  28.  
  29. /* Result of execution
  30.  
  31. H is 14 years old and got a grade of 82
  32. R is 15 years old and got a grade of 75
  33.  
  34. */
  35.